home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / config.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-06-08  |  4.7 KB  |  112 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is ChatZilla.
  16.    -
  17.    - The Initial Developer of the Original Code is James Ross.
  18.    - Portions created by the Initial Developer are Copyright (C) 2004
  19.    - the Initial Developer. All Rights Reserved.
  20.    -
  21.    - Contributor(s):
  22.    -   James Ross <silver@warwickcompsoc.co.uk>
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <!DOCTYPE dialog SYSTEM "chrome://chatzilla/locale/config.dtd">
  39.  
  40. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  41. <?xml-stylesheet href="config.css" type="text/css"?>
  42.  
  43. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  44.     xmlns:html="http://www.w3.org/1999/xhtml"
  45.     windowtype="irc:chatzilla:config"
  46.     buttons="accept,cancel,extra1"
  47.     extra1Label="&dialog.apply;"
  48.     ondialogaccept="gPrefWindow.onOK();"
  49.     ondialogcancel="gPrefWindow.onCancel();"
  50.     ondialogextra1="gPrefWindow.onApply();"
  51.     onload="setupButtons(); gPrefWindow.onLoad();"
  52.     onunload="gPrefWindow.onClose();"
  53.     title="&window.title;">
  54.  
  55.   <script src="chrome://global/content/strres.js"/>
  56.   <script src="chrome://chatzilla/content/lib/js/utils.js"/>
  57.   <script src="chrome://chatzilla/content/lib/js/file-utils.js"/>
  58.   <script src="chrome://chatzilla/content/lib/js/pref-manager.js"/>
  59.   <script src="chrome://chatzilla/content/lib/js/message-manager.js"/>
  60.   <script src="chrome://chatzilla/content/prefs.js"/>
  61.   <script src="chrome://chatzilla/content/messages.js"/>
  62.   <script src="config.js"/>
  63.  
  64.   <tooltip id="czPrefTip" orient="vertical" 
  65.       onpopupshowing="return gPrefWindow.onTooltipPopupShowing(this);">
  66.     <vbox>
  67.       <label id="czPrefTipTitle" class="header">.</label>
  68.       <label id="czPrefTipLabel">.</label>
  69.     </vbox>
  70.     <spacer flex="1"/>
  71.   </tooltip>
  72.   
  73.   <deck id="loadDeck" flex="1">
  74.     <vbox flex="1" align="center" pack="center">
  75.       <label class="loading" value="&loading.label;"/>
  76.     </vbox>
  77.     <hbox flex="1">
  78.       <vbox id="pref-objects">
  79.         <tree id="pref-tree-object" flex="1" seltype="single" 
  80.             hidecolumnpicker="true" onselect="gPrefWindow.onSelectObject();">
  81.           <treecols>
  82.             <treecol id="pref-col-name" primary="true" flex="1" 
  83.                 hideheader="true"/>
  84.           </treecols>
  85.           <treechildren id="pref-tree"/>
  86.         </tree>
  87.         <hbox>
  88.           <button label="&object.add.label;" tooltiptext="&object.add.hint;" 
  89.               accesskey="&object.add.accesskey;" flex="1" 
  90.               oncommand="gPrefWindow.onAddObject();"/>
  91.           <button label="&object.del.label;" tooltiptext="&object.del.hint;" 
  92.               accesskey="&object.del.accesskey;" flex="1" 
  93.               oncommand="gPrefWindow.onDeleteObject();" id="object-delete"/>
  94.         </hbox>
  95.       </vbox>
  96.       <vbox flex="1">
  97.         <dialogheader id="pref-header" title=""/>
  98.         <deck flex="1" id="pref-object-deck"/>
  99.         <hbox align="center">
  100.           <button label="&object.reset.label;" tooltiptext="&object.reset.hint;"
  101.               accesskey="&object.reset.accesskey;" 
  102.               oncommand="gPrefWindow.onResetObject();"/>
  103.           <spacer flex="1"/>
  104.           <html:a onclick="" target="_blank" href="&homepage.url;" 
  105.               style="display: block; color: blue; text-decoration: 
  106.               underline;">&homepage.label;</html:a>
  107.         </hbox>
  108.       </vbox>
  109.     </hbox>
  110.   </deck>
  111. </dialog>
  112.